Description | : Gets a list of assistants that were previously created. |
Reference | : Link ¶ |
⚼ Request
GET:
/assistants
{
limit:
integer
,
order:
string
,
after:
string
,
before:
string
,
}
⚐ Response (200)
{
object:
enum
,
data:
[
]
,
{
,
id:
string
,
object:
enum
,
created_at:
integer
,
name:
string
,
description:
string
,
model:
string
,
instructions:
string
,
tools:
[
]
,
{
,
type:
string
,
}
tool_resources:
object
,
temperature:
number
,
top_p:
number
,
response_format:
string
,
metadata:
object
,
}
first_id:
string
,
last_id:
string
,
has_more:
boolean
,
}